home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 2000 January
/
Macworld (2000-01).dmg
/
Updaters
/
DirXtra HTML204
/
xtradoc.dir
/
00008_Script_Movie Script
< prev
next >
Wrap
Text File
|
1999-02-22
|
1KB
|
37 lines
on startmovie
-- declare the globals to setup the field values
global ghtmlnormfont, ghtmlheadfont, ghtmlttfont, ghtmlfontsize, ghtmlpath
global ghtmllinkred, ghtmllinkgreen, ghtmllinkblue, ghtmlsmoothness, ghtmlmargin
global gmac, gsep, ghandcursor
-- setup the pointing hand cursor for link-rollover
set ghandcursor = [member "hand", member "handmask" ]
-- setup platform specific globals
if the machinetype = 256 then -- is Windows
set gmac = 0
set gsep = "\"
else -- is Mac
set gmac = 1
set gsep = ":"
end if
-- setup intial values and global variables
htmlstartmovie
-- setup the field values
set the text of field "normfont" = ghtmlnormfont
set the text of field "ttfont" = ghtmlttfont
set the text of field "headfont" = ghtmlheadfont
set the text of field "fontsize" = string(ghtmlfontsize)
set the text of field "red" = string(ghtmllinkred)
set the text of field "green" = string(ghtmllinkgreen)
set the text of field "blue" = string(ghtmllinkblue)
set the text of field "smooth" = string(ghtmlsmoothness)
set the text of field "margin" = string(ghtmlmargin)
set ghtmlpath = the moviepath -- the directory of the html files
end